home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 620 b | 37 lines |
- #!smake
-
- include $(ROOT)/usr/include/make/commondefs
-
- #
- # This makefile creates the buttonfly program
- #
-
- # Libraries to link with to get the GL and X11 libraries.
-
- TARGETS = buttonfly
-
- LLDLIBS = ../libdemo/libdemo.a -lgl -lX11 -limage -lgutil
- LCINCS = -I../libdemo
- CVERSION = -cckr
-
- CFILES = buttonfly.c lexer.c textmap.c
- YFILES = parser.y
- LDIRT = y.tab.h Times-Italic.bw
- HFILES = kurtfont.h buttonfly.h data.h textmap.h
-
-
- all default: $(TARGETS)
-
- include $(COMMONRULES)
-
- depend incdepend fluff: y.tab.h
-
- ${TARGETS}: ${OBJECTS}
- ${CCF} ${OBJECTS} $(LDFLAGS) -o $@
-
- $(OBJECTS): y.tab.h
-
- y.tab.h:
- $(YACCF) -d $(YFILES)
-
-